home *** CD-ROM | disk | FTP | other *** search
/ NeXT Education Software Sampler 1992 Fall / NeXT Education Software Sampler 1992 Fall.iso / Mathematics / Notebooks / SigProc2.0 / Packages / SignalProcessing / Master.m < prev    next >
Encoding:
Text File  |  1992-08-18  |  1.5 KB  |  60 lines

  1. (*  :Title:    Initialization (Stubs) for entire Signal Processing Package  *)
  2.  
  3. (*  :Authors:    Brian Evans, James McClellan  *)
  4.  
  5. (*  :Summary:    This is an initialization file only  *)
  6.  
  7. (*  :Context:    none  *)
  8.  
  9. (*  :PackageVersion:  2.74    *)
  10.  
  11. (*
  12.     :Copyright:    Copyright 1989-1992 by Brian L. Evans
  13.         Georgia Tech Research Corporation
  14.  
  15.     Permission to use, copy, modify, and distribute this software
  16.     and its documentation for any purpose and without fee is
  17.     hereby granted, provided that the above copyright notice
  18.     appear in all copies and that both that copyright notice and
  19.     this permission notice appear in supporting documentation,
  20.     and that the name of Georgia Tech or Georgia Institute of
  21.     Technology not be used in advertising or publicity pertaining
  22.     to distribution of the software without specific, written prior
  23.     permission.  Georgia Tech makes no representations about the
  24.     suitability of this software for any purpose.  It is provided
  25.     "as is" without express or implied warranty.
  26.  *)
  27.  
  28. (*  :History:    *)
  29.  
  30. (*  :Keywords:    *)
  31.  
  32. (*  :Source:    *)
  33.  
  34. (*  :Warning:    *)
  35.  
  36. (*  :Mathematica Version:  1.2 or 2.0  *)
  37.  
  38. (*  :Limitation:  *)
  39.  
  40.  
  41. (*  B E G I N     I N I T I A L I Z A T I O N  *)
  42.  
  43. Block [    {oldoutput, tmpfile, tmpstream},
  44.  
  45.     If [ TrueQ[ $VersionNumber >= 2.0 ],
  46.          oldoutput = $Output;
  47.          tmpstream = OpenTemporary[];
  48.          $Output = {tmpstream} ];
  49.  
  50.     Needs[ "SignalProcessing`Digital`" ];
  51.     Needs[ "SignalProcessing`Analog`" ];
  52.  
  53.     If [ TrueQ[ $VersionNumber >= 2.0 ],
  54.          $Output = oldoutput;
  55.          tmpfile = Close[tmpstream];
  56.          DeleteFile[tmpfile] ] ]
  57.  
  58.  
  59. Null
  60.